home *** CD-ROM | disk | FTP | other *** search
- In article <13213750@sourcery.han.de>, Olaf Barthel writes:
- > In Article <1982.6646T659T2072@sn.no>, Christopher Naas <christon@sn.no>
- > wrote:
- > > There's a small typo' in the Autodocs. Not very important, but AT
- > > should fix it before the next release. Posted here since they're
- > > playing hard to get hold of.
- >
- > Ok, done. Any other typos that need fixing?
-
- > dos.library/InternalLoadSeg dos.library/InternalLoadSeg
- >
- > NAME
- > InternalLoadSeg -- Low-level load routine (V36)
-
- [...]
-
- > INPUTS
- > fh - Filehandle to load from.
- > table - When loading an overlay, otherwise ignored.
- > functionarray - Array of function to be used for read, alloc, and free.
- > FuncTable[0] -> Actual = ReadFunc(readhandle,buffer,length),DOSBase
- > D0 D1 A0 D0 A6
- In fact the same registers used for Read() are correct:
- D0 D1 D2 D3
-
- You didn't ask for it, but there's also a bug in the
- includes for the dos.library:
-
- dos/dosasl.h:
-
- > #define APB_DOWILD 0 /* User option ALL */
- > #define APF_DOWILD 1
-
- The note "obsolete" is missing.
-
- > #define APB_DODIR 2 /* Bit is SET if a DIR node should be */
- > #define APF_DODIR 4 /* entered. Application can RESET this */
- > /* bit after MatchFirst/MatchNext to AVOID */
- > /* entering a dir. */
-
- It should be something like this:
- > #define APB_DODIR 2 /* Bit has to be set by the APPLICATION */
- > #define APF_DODIR 4 /* if a DIR node should be entered. */
-
- Bye, Patrick
- --
- patrick.ohly@stud.uni-karlsruhe.de
-
-